home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Nave / Cosmic Defender.swf / scripts / DefineButton2_97 / BUTTONCONDACTION on(press).as
Encoding:
Text File  |  2006-06-13  |  455 b   |  16 lines

  1. on(press){
  2.    s = 1;
  3.    while(s < 20)
  4.    {
  5.       this.compile_stop = eval("_root.comp_" + s).play();
  6.       this.ship_stop = eval("_root.ship_" + s).play();
  7.       this.shot_stop = eval("_root.shot_" + s).play();
  8.       this.man_stop = eval("_root.man_" + s).play();
  9.       this.bang_stop = eval("_root.b_" + s).play();
  10.       this.mine_stop = eval("_root.mine_" + s).play();
  11.       s++;
  12.    }
  13.    _root.paused = false;
  14.    removeMovieClip(this);
  15. }
  16.